// Lang_36 [Unicode].nova // The application class. class UnicodeApp { // Application class's "main" function. public static void main( String[] args ) { String s = "☺☻☼♀♂♠♣♥♦♪♫"; // NOTE: This will output "?" chars to the Console in Windows. Stream.writeLine( s ); char c = 'H'; s = c + "ello World!"; Stream.writeLine( s ); Char c2 = new Char( c ); s = c2 + "i There!"; Stream.writeLine( s ); } }